All Questions
Tagged with lazy-initializationstate
1 question
6votes
1answer
1kviews
Is it better to use lambda functions or boolean variables to record state
I have heard some people claiming that boolean state variables are generally bad and should be avoided when possible. Apparently in many cases it is possible to put state into lambda functions, ...